942b37446ce90ca3c78d009bb2a949d3edce8706,MUDServer/src/mud/objects/Item.java,Item,toDB,#,172
Before Change
String[] output = new String[8];
output[0] = this.getDBRef() + ""; // database reference number
output[1] = this.getName(); // name
output[2] = this.getFlagsAsString(); // flags
output[3] = this.getDesc(); // description
output[4] = this.getLocation() + ""; // location
output[5] = this.item_type.ordinal() + ""; // item type
After Change
String[] output = new String[8];
output[0] = this.getDBRef() + ""; // database reference number
output[1] = this.getName(); // name
output[2] = this.type + this.getFlagsAsString(); // flags
output[3] = this.getDesc(); // description
output[4] = this.getLocation() + ""; // location
output[5] = this.item_type.ordinal() + ""; // item type